Skip to content

Latest commit

 

History

History
48 lines (42 loc) · 717 Bytes

3.1.16 - Coroutine::statvfs.md

File metadata and controls

48 lines (42 loc) · 717 Bytes

Coroutine::statvfs

获取文件系统信息。

function Coroutine::statvfs(string $path);
  • $path:文件系统挂载的目录,如/,可以使用dfmount -l命令获取
  • 失败返回false
  • 成功返回结果数组

4.2.5或以上版本可用

使用示例

go(function() {
	var_dump(co::statvfs('/'));
});
array(11) {
  ["bsize"]=>
  int(4096)
  ["frsize"]=>
  int(4096)
  ["blocks"]=>
  int(61068098)
  ["bfree"]=>
  int(45753580)
  ["bavail"]=>
  int(42645728)
  ["files"]=>
  int(15523840)
  ["ffree"]=>
  int(14909927)
  ["favail"]=>
  int(14909927)
  ["fsid"]=>
  int(1002377915335522995)
  ["flag"]=>
  int(4096)
  ["namemax"]=>
  int(255)
}